.pickerContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.dateInputs {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dateInputs label {
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

.dateInputs input {
    height: 2.5rem;
    width: 9.5rem;
    padding: 0 0.5rem;
    border: 2px solid #ccc;
    border-radius: 1.3rem;
    text-align: center;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fdfdfd;
}

.dateInputs input:focus {
    border-color: #0077ff;
    box-shadow: 0 0 5px rgba(0, 119, 255, 0.4);
    outline: none;
}

.pickerSearch {
    height: 2.5rem;
    width: 9.5rem;
    border: none;
    border-radius: 1.3rem;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: #0077ff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 119, 255, 0.3);
}

.pickerSearch:hover {
    background-color: #005fd1;
    transform: translateY(-1px);
}

.pickerSearch:active {
    transform: scale(0.98);
}

@media (max-width: 700px) {
    .pickerContainer {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem;
        margin-top: 1rem;
    }

    .dateInputs {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .pickerSearch {
        width: 100%;
        min-width: 150px;
    }

    .dateInputs label,
    .dateInputs input {
        font-size: 1rem;
        width: 100%;
    }
}